#include #include using namespace std; void powiedz( const char * tekst, int czas ) { cout << tekst << endl; int t = clock(); t += czas; while( clock() < t ){} } int main() { float a, b, c; cout << "Podaj bok a." << endl; cin >> a; cout << "Podaj bok b." << endl; cin >> b; cout << "Podaj bok c." << endl; cin >> c; if( a == b && b == c ) { powiedz( "Trojkat jest rownoboczny.", 2000 ); } return 0; }